home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_13_11 / gilhool2 / pulse.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-10-10  |  742 b   |  30 lines

  1. #ifndef _PULSE_H
  2. #define _PULSE_H
  3. #include <windows.h>
  4. /*
  5. logical values, menu items
  6. */
  7. #define ID_TIMER        1000
  8. #define MI_PULSE        100
  9. #define MI_MAXPULSE     102
  10. #define MI_MINPULSE     103
  11. #define BUFMAX                  256
  12. /*
  13. global variables
  14. */
  15. #ifndef GLOBALS
  16. #define ALLOC extern
  17. #else
  18. #define ALLOC
  19. #endif
  20. ALLOC   int        Mode;               /* current display mode   */
  21. ALLOC   int        nXPos, nYPos;       /* screen location                */
  22. int  PASCAL     WinMain(HINSTANCE, HINSTANCE, LPSTR, int);
  23. BOOL            InitApplication(HINSTANCE);
  24. BOOL            InitInstance(HINSTANCE, int);
  25. long FAR PASCAL MainWndProc(HWND, UINT, WPARAM, LPARAM);
  26. void            GetIni(void);
  27. void            PutIni(void);
  28. #endif
  29.  
  30.